projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0037e2f
)
* minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a Lisp_Object.
author
Ken Raeburn
<raeburn@raeburn.org>
Sun, 7 Oct 2001 11:03:59 +0000
(11:03 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Sun, 7 Oct 2001 11:03:59 +0000
(11:03 +0000)
src/ChangeLog
patch
|
blob
|
history
src/minibuf.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index c9f15add329cdd74c72b03fc0df6b0215e6fc29f..d540f05822ec72de2e5965c57662f134a3461384 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,5
+1,8
@@
2001-10-07 Ken Raeburn <raeburn@gnu.org>
+ * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a
+ Lisp_Object.
+
* lisp.h (Ffield_end): Declare.
2001-10-07 Gerd Moellmann <gerd@gnu.org>
diff --git
a/src/minibuf.c
b/src/minibuf.c
index 8ffb6c70d85c762e2881fd7969aa4e577ad9d905..cf98cc98b3bf843fd41e8594297fc66d6292ef84 100644
(file)
--- a/
src/minibuf.c
+++ b/
src/minibuf.c
@@
-335,7
+335,7
@@
Return (point-min) if current buffer is not a mini-buffer.")
Lisp_Object end = Ffield_end (beg, Qnil);
if (XINT (end) == ZV && NILP (Fget_char_property (beg, Qfield, Qnil)))
- return
make_number (beg)
;
+ return
beg
;
else
return end;
}